home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-pattern-hrule.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  90 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Beveled pattern hrule for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. (define (script-fu-beveled-pattern-hrule width height pattern)
  24.   (let* (
  25.         (img (car (gimp-image-new width height RGB)))
  26.         (background (car (gimp-layer-new img
  27.                                          width height RGB-IMAGE
  28.                                          "Hrule" 100 NORMAL-MODE)))
  29.         (bumpmap (car (gimp-layer-new img
  30.                                       width height RGBA-IMAGE
  31.                                       "Bumpmap" 100 NORMAL-MODE)))
  32.         )
  33.  
  34.     (gimp-context-push)
  35.  
  36.     (gimp-image-undo-disable img)
  37.     (gimp-image-add-layer img background -1)
  38.     (gimp-image-add-layer img bumpmap -1)
  39.  
  40.     ; Create pattern layer
  41.  
  42.     (gimp-context-set-background '(0 0 0))
  43.     (gimp-edit-fill background BACKGROUND-FILL)
  44.     (gimp-context-set-pattern pattern)
  45.     (gimp-edit-bucket-fill background PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
  46.  
  47.     ; Create bumpmap layer
  48.  
  49.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  50.  
  51.     (gimp-context-set-background '(127 127 127))
  52.     (gimp-rect-select img 1 1 (- width 2) (- height 2) CHANNEL-OP-REPLACE FALSE 0)
  53.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  54.  
  55.     (gimp-context-set-background '(255 255 255))
  56.     (gimp-rect-select img 2 2 (- width 4) (- height 4) CHANNEL-OP-REPLACE FALSE 0)
  57.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  58.  
  59.     (gimp-selection-none img)
  60.  
  61.     ; Bumpmap
  62.  
  63.     (plug-in-bump-map RUN-NONINTERACTIVE img background bumpmap 135 45 2 0 0 0 0 TRUE FALSE 0)
  64.  
  65.     (gimp-image-set-active-layer img background)
  66.     (gimp-image-remove-layer img bumpmap)
  67.  
  68.     (gimp-image-undo-enable img)
  69.     (gimp-display-new img)
  70.  
  71.     (gimp-context-pop)
  72.   )
  73. )
  74.  
  75.  
  76. (script-fu-register "script-fu-beveled-pattern-hrule"
  77.     _"_Hrule..."
  78.     _"Create a beveled pattern hrule for webpages"
  79.     "Federico Mena Quintero"
  80.     "Federico Mena Quintero"
  81.     "July 1997"
  82.     ""
  83.     SF-ADJUSTMENT _"Width"   '(480 5 1500 1 10 0 1)
  84.     SF-ADJUSTMENT _"Height"  '(16 1 100 1 10 0 1)
  85.     SF-PATTERN    _"Pattern" "Wood"
  86. )
  87.  
  88. (script-fu-menu-register "script-fu-beveled-pattern-hrule"
  89.                          "<Image>/File/Create/Web Page Themes/Beveled Pattern")
  90.